* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #f5f7fa, #e4ebf5);
  min-height: 100vh;
  padding: 20px;
  color: #333;
}

.pp-container {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  border-radius: 14px;
  padding: 30px 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#ppTitle {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1e293b;
}

.lang-switch {
  text-align: center;
  margin-bottom: 25px;
}

.lang-switch button {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 10px 18px;
  margin: 5px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-switch button:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

#ppContent {
  line-height: 1.9;
  font-size: 15.5px;
  color: #374151;
}

#ppContent h2 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 20px;
  color: #111827;
}

#ppContent p {
  margin-bottom: 15px;
}

footer {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  font-size: 14px;
  color: #6b7280;
}
.back-home {
  margin-top: 30px;
  text-align: center;
}

.back-home a {
  display: inline-block;
  text-decoration: none;
  background: #111827;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.back-home a:hover {
  background: #2563eb;
  transform: translateY(-2px);
}
